home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / PInterfaces / Packages.p < prev    next >
Text File  |  1996-05-01  |  2KB  |  73 lines

  1. {
  2.      File:        Packages.p
  3.  
  4.      Contains:    Package Manager Interfaces.
  5.  
  6.      Version:    Technology:    System 7.5
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. }
  18. {$IFC UNDEFINED UsingIncludes}
  19. {$SETC UsingIncludes := 0}
  20. {$ENDC}
  21.  
  22. {$IFC NOT UsingIncludes}
  23.  UNIT Packages;
  24.  INTERFACE
  25. {$ENDC}
  26.  
  27. {$IFC UNDEFINED __PACKAGES__}
  28. {$SETC __PACKAGES__ := 1}
  29.  
  30. {$I+}
  31. {$SETC PackagesIncludes := UsingIncludes}
  32. {$SETC UsingIncludes := 1}
  33.  
  34. {$IFC UNDEFINED __TYPES__}
  35. {$I Types.p}
  36. {$ENDC}
  37.  
  38. {$PUSH}
  39. {$ALIGN MAC68K}
  40. {$LibExport+}
  41.  
  42. {$IFC FOR_SYSTEM7_AND_SYSTEM8_DEPRECATED }
  43.  
  44. CONST
  45.     listMgr                        = 0;                            {  list manager  }
  46.     dskInit                        = 2;                            {  Disk Initializaton  }
  47.     stdFile                        = 3;                            {  Standard File  }
  48.     flPoint                        = 4;                            {  Floating-Point Arithmetic  }
  49.     trFunc                        = 5;                            {  Transcendental Functions  }
  50.     intUtil                        = 6;                            {  International Utilities  }
  51.     bdConv                        = 7;                            {  Binary/Decimal Conversion  }
  52.     editionMgr                    = 11;                            {  Edition Manager  }
  53.  
  54. PROCEDURE InitPack(packID: INTEGER);
  55.     {$IFC NOT GENERATINGCFM}
  56.     INLINE $A9E5;
  57.     {$ENDC}
  58. PROCEDURE InitAllPacks;
  59.     {$IFC NOT GENERATINGCFM}
  60.     INLINE $A9E6;
  61.     {$ENDC}
  62. {$ENDC}
  63. {$ALIGN RESET}
  64. {$POP}
  65.  
  66. {$SETC UsingIncludes := PackagesIncludes}
  67.  
  68. {$ENDC} {__PACKAGES__}
  69.  
  70. {$IFC NOT UsingIncludes}
  71.  END.
  72. {$ENDC}
  73.